home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / games / nhak_src.zip / FUNC_TAB.H < prev    next >
C/C++ Source or Header  |  1993-03-16  |  553b  |  25 lines

  1. /*    SCCS Id: @(#)func_tab.h    3.0    88/10/15
  2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4. /* func_tab.h - version 1.0.2 */
  5.  
  6. #ifndef FUNC_TAB_H
  7. #define FUNC_TAB_H
  8.  
  9. struct func_tab {
  10.     char f_char;
  11.     int NDECL((*f_funct));
  12.     const char *f_text;
  13. };
  14.  
  15. extern const struct func_tab cmdlist[];
  16.  
  17. struct ext_func_tab {
  18.     const char *ef_txt, *ef_desc;
  19.     int NDECL((*ef_funct));
  20. };
  21.  
  22. extern const struct ext_func_tab extcmdlist[];
  23.  
  24. #endif /* FUNC_TAB_H /**/
  25.